home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / vbcc / machines / amigappc / libsrc / math / tanh.c < prev   
Encoding:
C/C++ Source or Header  |  1997-12-30  |  122 b   |  10 lines

  1. #include <math.h>
  2.  
  3. double tanh(double x)
  4. {
  5.   double ex = exp(x);
  6.   double emx = exp(-x);
  7.  
  8.   return ((ex-emx)/(ex+emx));
  9. }
  10.